home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 19 / macformat_19.iso / Shareware / Developers / NDS Osax v1.0d2 / Logout from NDS next >
Text File  |  1996-05-17  |  680b  |  24 lines

  1. --5/16/96
  2. --PCI powermacs tend to lock up on shutdown if logged in to NDS.
  3. --There is a fix in 7.5.3 that you can custom install which works around this
  4. --by adding a 2 minute delay to the shutdown process.
  5. --This script, if saved as an applet and put into the shutdown folder,
  6. --should be a much cleaner and faster workaround of the problem.
  7.  
  8. on run
  9.     try
  10.         tell application "Finder" to put away (every disk whose ¬
  11.             (local volume is false) and name contains "CAFE")
  12.         set quitnow to true
  13.         
  14.         NDS_Logout
  15.         
  16.     on error errMsg number errNum
  17.         beep (1)
  18.         display dialog ("Logout from NDS script failed!
  19.  
  20. " & errMsg) buttons {"Quit"} default button 1 with icon 0
  21.     end try
  22.     
  23. end run
  24.